home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Source Code / C / Games / Arashi 1.1 / For your think c folder / StdInit.c
Encoding:
C/C++ Source or Header  |  1992-09-09  |  475 b   |  27 lines  |  [TEXT/KAHL]

  1. /*/
  2.      Project Arashi: StdInit.c
  3.      Major release: Version 1.1, 7/22/92
  4.  
  5.      Last modification: Wednesday, September 9, 1992, 21:39
  6.      Created: Thursday, April 23, 1987, 17:38
  7.  
  8.      Copyright © 1987-1992, Juri Munkki
  9. /*/
  10.  
  11. #define    STACKSPACE    32768L
  12.  
  13. void    DoInits()
  14. {
  15.     SetApplLimit(GetApplLimit() - (STACKSPACE - DefltStack));
  16.  
  17.     InitGraf(&thePort);
  18.     InitCursor();
  19.     InitFonts();
  20.     InitWindows();
  21.     InitMenus();
  22.     TEInit();
  23.     InitDialogs(0L);
  24.     InitCursor();
  25.     MaxApplZone();
  26. }
  27.